home *** CD-ROM | disk | FTP | other *** search
/ Growing Good Roses / Growing Good Roses.iso / pc / misc / demo.dxr / 00066.ls < prev    next >
Encoding:
Text File  |  1997-04-18  |  251 b   |  18 lines

  1. global gHandCursor
  2.  
  3. on enterFrame
  4.   repeat with x = 31 to 48
  5.     repeat while rollOver(x)
  6.       if the mouseDown then
  7.         exit
  8.       end if
  9.       cursor(gHandCursor)
  10.     end repeat
  11.     cursor(-1)
  12.   end repeat
  13. end
  14.  
  15. on exitFrame
  16.   go(the frame)
  17. end
  18.